@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    background: linear-gradient(135deg,#001330,#0b2a59);
    color: white;
    /* background-image: url(back.png); */
}

/* NAVBAR */
header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 10%;
}

.logo{
    font-size: 26px;
    font-weight: 700;
}
.logo span{
    color: #FF0066;
    /* #2ba9ff */
}

nav a{
    color: #fff;
    text-decoration: none;
    margin-left: 30px;
    font-size: 15px;
    transition: .3s;
}
nav a:hover{
    color: #FF0066;
}

/* HERO LAYOUT */
.container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4% 10%;
    flex-wrap: wrap;
}

/* LEFT CONTENT */
.left{
    max-width: 600px;
}

.left h2{
    font-size: 38px;
    font-weight: 700;
}

.left h1{
    font-size: 44px;
    font-weight: 700;
}
.left span{
    color: #FF0066;
}

.left p{
    margin: 15px 0;
    line-height: 1.5;
    opacity: .8;
}

/* FORM */
form{
    display: flex;
    /* flex-direction: column; */
}
form input{
    padding: 12px;
    border: none;
    outline: none;
    margin: 8px 0;
    border-radius: 25px;
    font-size: 15px;
}
form button{
   
    margin: 10px;
    padding: 12px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
     width: 50%;
    cursor: pointer;
    background: #FF0066;
    color: #fff;
    transition: 0.4s ease;
}
form button:hover{
    transform: scale(1.07);
    background: #0077cc;
}

.left small{
    margin-top: 10px;
    display: block;
}

/* IMAGE SHAPE ANIMATION */
.blob{
    position: relative;
    width: 530px;
    height: 530px;
    background: linear-gradient(135deg,#FF0066,#073ef5);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: blob 6s infinite alternate ease-in-out;
}

.blob img{
    width: 90%;
    border-radius: 30px;
}

/* ANIMATION */
@keyframes blob {
    0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    100% { border-radius: 30% 60% 70% 40% / 50% 60% 40% 70%; }
}

/* MOBILE RESPONSIVE */
@media (max-width:900px){
    .container{
        flex-direction: column;
        text-align: center;
    }
    .right{
        margin-top: 25px;
    }
}


/* SERVICE SECTION */
.services-section {
    background: #fff1cf;
    text-align: center;
    padding: 70px 10%;
}

.section-subtitle {
    color: #7a61ff;
    font-weight: 600;
    font-size: 22px;
}

.section-title {
    font-size: 35px;
    font-weight: 700;
    margin-top: 5px;
    color: #1e1e1e;
}

.services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 25px;
}

/* Card Design */
.service-card {
    background: white;
    width: 23%;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform .4s ease, box-shadow .4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 12px;
}

.service-card p {
    color: #333;
    line-height: 1.6;
}

/* ✅ MOBILE RESPONSIVE */
@media (max-width: 992px){
    .service-card {
        width: 48%;
    }
}

@media (max-width: 600px){
    .service-card {
        width: 100%;
    }
    .section-title {
        font-size: 28px;
    }
}

/* /about us */

 .info-container {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 50px;
      animation: appearFade 1.2s ease-in-out;
      height: 550px;
    }

    /* Image Box */
    .info-image-box img {
      width: 550px;
      border-radius: 14px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease;
    }

    .info-image-box img:hover {
      transform: scale(1.05);
    }

    /* Text Area */
    .info-text-area {
      max-width: 520px;
      animation: textSlideUp 1s ease forwards;
    }

    .info-text-area .title-main {
      font-size: 32px;
      font-weight: 700;
      text-align: center;
      margin-bottom: 10px;
    }

    .info-text-area .title-sub {
      font-size: 18px;
      color: #d48b51;
      text-align: center;
      margin-bottom: 20px;
    }

    .info-text-area .role-heading {
      font-size: 22px;
      margin-bottom: 10px;
      text-align: left;
    }

    .info-text-area .role-heading span {
      color: #d48b51;
    }

    .info-text-area .description {
      font-size: 15px;
      color: #ffffff;
      text-align: justify;
      line-height: 1.7;
    }
      /* Animations */
    @keyframes appearFade {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    @keyframes textSlideUp {
      from {
        transform: translateY(40px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .info-container {
        flex-direction: column;
        text-align: center;
      }

      .info-image-box img {
        width: 80%;
      }

      .info-text-area .title-main {
        font-size: 26px;
      }

      .info-text-area .description {
        font-size: 14px;
      }
    }

/* FOOTER */
footer{
    background: #00142c;
    padding: 50px 10%;
    margin-top: 30px;
    color: #fff;
}

.footer-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-left{
    max-width: 350px;
}

.footer-left h2{
    font-size: 28px;
    font-weight: 700;
}

.footer-left span{
    color: #FF0066;
}

.footer-left p{
    margin-top: 10px;
    opacity: .75;
    line-height: 1.6;
}

.footer-links h3,
.footer-contact h3{
    margin-bottom: 10px;
    font-size: 18px;
}

.footer-links a{
    display: block;
    color: #fff;
    text-decoration: none;
    margin: 6px 0;
    transition: 0.3s;
}

.footer-links a:hover{
    color: #FF0066;
    transform: translateX(5px);
}

.footer-bottom{
    margin-top: 30px;
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: .7;
}

/* FOOTER MOBILE RESPONSIVE */
@media (max-width: 900px){
    .footer-container{
        text-align: center;
        flex-direction: column;
    }
}
